home *** CD-ROM | disk | FTP | other *** search
/ The Arsenal Files 8 / The Arsenal Files Collection #8 (Arsenal Computer) (1996).ISO / doorware / bmstr22.zip / MNODE.DOC < prev    next >
Text File  |  1996-09-12  |  2KB  |  54 lines

  1.                          ▒▒▒▒▒ Board Master v2.2 ▒▒▒▒▒
  2.                 ┌─────────────────────────────────────────────┐
  3.                 │ Copyright (c)1995, 1996 Heavenware Software │
  4.                 │             All Rights Reserved!            │
  5.                 └───────┬─────────────────────────────┬───────┘
  6.                         │   Multi-Node Documentation  │
  7.                         └─────────────────────────────┘
  8.  
  9.  
  10.  As of version 2.0, Board Master is now multi-node & multi-tasking. 
  11.  Meaning more than 1 user can be playing at the same time.
  12.  
  13.  Board Master automatically detects multi-tasking systems; specifically, 
  14.  Windows, DESQview, OS/2, & TOPview. It gives up time slices which will 
  15.  help prevent one of your nodes from hogging the CPU. There are no extra 
  16.  requirements needed from you. Detection and time slicing are all automatic.
  17.  
  18.  
  19.  MULTI-NODE SETUP:
  20.  ================
  21.  If you operate a multi-node system and don't already know how to
  22.  setup a door for multi-node operation, then read on.
  23.  
  24.  Edit your batch file-
  25.    Your going to need to modify it so it passes the node number
  26.    to Board Master.
  27.  
  28.    Most all BBSs have some way of doing this. See your BBS docs for
  29.    the specifics. Example of door batch file:
  30.  
  31.    Ex: cd\bbs\doors\bm
  32.        if %1 == 1 then node1
  33.        if %1 == 2 then node2
  34.        if %1 == 3 then node3
  35.  
  36.        :node1
  37.         bbsmstr door1.cfg ibbs
  38.         if exist online.flg del online.flg
  39.        :node2
  40.         bbsmstr door2.cfg ibbs
  41.         if exist online.flg del online.flg
  42.          
  43.        :node3
  44.         bbsmstr door3.cfg ibbs
  45.         if exist online.flg del online.flg
  46.  
  47.    In this example the node number was passed to the batch file as the
  48.    1st parameter and then passed on to Board Master by telling it which
  49.    .CFG file to use.
  50.  
  51.  You must of course have already created seperate .CFGs for each node.
  52.  Check the main documentation for details on how to create your DOOR.CFG.
  53.  
  54.